home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / prgtools / mint / lib / mntlib44.zoo / mntlib / mkfifo.c < prev    next >
Encoding:
C/C++ Source or Header  |  1993-10-12  |  207 b   |  16 lines

  1. /* fake mkfifo -- this always fails */
  2.  
  3. #include <errno.h>
  4. #include <support.h>
  5. #include <types.h>
  6. #include <stat.h>
  7.  
  8. int
  9. mkfifo(path, mode)
  10.     const char *path;
  11.     mode_t mode;
  12. {
  13.     errno = EINVAL;
  14.     return -1;
  15. }
  16.